home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP13 / SURF.CPP next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  679 b   |  23 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("surf00.cpp", Form1);
  6. USERES("surf.res");
  7. //---------------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.     try
  11.     {
  12.         Application->Initialize();
  13.         Application->CreateForm(__classid(TForm1), &Form1);
  14.         Application->Run();
  15.     }
  16.     catch (Exception &exception)
  17.     {
  18.         Application->ShowException(&exception);
  19.     }
  20.     return 0;
  21. }
  22. //---------------------------------------------------------------------------
  23.